This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Deleting the Calendar Profile is quite easy using Lotus Script. All You have to do is open up a new message, go to the mail body,and select create\hotspot\button, select Lotus Script as Source, and paste the following code between the Sub Tags, and finally click the button.;
Dim session As notessession
Dim db As notesdatabase
Dim cprof As notesdocument
Set session = New notessession
Set db = session.currentdatabase
Set cprof = db.GetProfileDocument("CalendarProfile")
If cprof.IsValid Then
If cprof.Remove(True)=True Then
Msgbox "Calendar Profile has been deleted"
Else
Msgbox "Error deleting Calprof doc"
End If
Else
Msgbox "Calprof not found"
End If
Note however, that You might not want to delete the entire calendar Profile, as it holds very important settings for the current user.
Our company developed a tool called ScanEZ, that - as opposed to Notes - would let You actually display and even modify all the profile documents (individually or even more at the same time) within Your databases.
You can download a free(lite) version of ScanEZ (This one is going to let You display the profile documents, so You can see for Yourself)using this link;